home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / text / misc / MSWordView_src.lha / mswordview / configure.scan < prev    next >
Text File  |  1998-12-02  |  384b  |  20 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. AC_INIT(mswordview.c)
  3.  
  4. dnl Checks for programs.
  5. AC_PROG_LEX
  6.  
  7. dnl Checks for libraries.
  8.  
  9. dnl Checks for header files.
  10.  
  11. dnl Checks for typedefs, structures, and compiler characteristics.
  12. AC_C_CONST
  13. AC_TYPE_PID_T
  14.  
  15. dnl Checks for library functions.
  16. AC_FUNC_VPRINTF
  17. AC_CHECK_FUNCS(getcwd mkdir rmdir)
  18.  
  19. AC_OUTPUT(Makefile)
  20.